/* General Styles */
body {
    font-family: Arial, sans-serif;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1000;
    border-bottom: 3px solid #006699;
}

.Cimage {
    max-height: 50px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
    font-family: Arial;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin: 0 10px; /* Space between dropdowns */
}

    /* Style the main dropdown link */
    .dropdown abtn {
        color: black;
        padding: 10px 10px;
        display: block;
        cursor: pointer;
    }

    .dropdown abtn:hover {
        background-color: #ddd;
    }

    .dropbtn,
    .dropdown > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        margin: 0;
        padding: 10px 16px;
        font: inherit;
        line-height: 1;
        color: #006699;
        text-decoration: none;
        cursor: pointer;
        vertical-align: middle;
    }

.dropbtn:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Style the drop-down list */
.dropdown-content {
    display: none; /* Hide dropdown content by default */
    position: absolute; /* Position dropdown content */
    background-color: #f9f9f9; /* Dropdown background */
    min-width: 300px; /* Minimum width */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow effect */
    z-index: 1; /* Above other elements */
}

/* Show the drop-down list when hovering */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style for the submenu */
.submenu {
    display: none;
    background-color: #f9f9f9;
}

.dropdown-content .dropdown:hover .submenu {
    display: block;
}

.dropdown-content a {
    color: black; /* Link color */
    padding: 10px 16px; /* Link padding */
    display: block; /* Block display */
    text-align: left; /* Align text to the left */
}

    .dropdown-content a:hover {
        background-color: #ddd;
    }

.submenu a {
    padding: 12px 16px;
    background-color: #e9e9e9;
}

    .submenu a:hover {
        background-color: #ddd;
    }

.LSTKB {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    color: #006699;
    padding: 5px 14px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
}

    /* Responsive Styles */
    @media (max-width: 768px) {

        .menu-toggle {
            display: block;
        }

        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 85px;
            left: 0;
            right: 0;
            background-color: white;
            z-index: 1000;
        }

            .nav-menu.active {
                display: flex;
            }

        .dropdown-content {
            width: 100%;
        }

        .dropdown, .LSTKB {
            width: 100%;
        }

        .dropbtn {
            width: 100%; 
        }

        .dropdown-content {
            position: static; 
        }

        .dropdown.active .dropdown-content, .LSTKB.active {
            display: block;
        }

        .dropdown .dropbtn, .LSTKB {
            background-color: #f1f1f1;
        }

            .dropdown .dropbtn:hover, .LSTKB {
                background-color: #ddd;
            }
    }